home *** CD-ROM | disk | FTP | other *** search
/ Mac Mania 4 / MacMania 4.toast / / Sound / SoundEffects 0.9.2 / SoundEffects Developer’s Kit / Interfaces / ModNoSettings.c < prev    next >
C/C++ Source or Header  |  1994-06-25  |  478b  |  17 lines

  1. #include "Glue.h"
  2.  
  3.  
  4. pascal OSErr settings(ModParamsPtr modInfo, GluePtr glue, ModSettingsHandle *prefs)
  5. {
  6.     return kModHasNoSettings;
  7. }
  8.  
  9.  
  10. pascal OSErr GetModSettings(ModParamsPtr modInfo, GluePtr glue, ModSettingsHandle *prefs)
  11. {
  12.     /* this routine has to load the settings. If no settings can be found, but the
  13.     module requires them, it has to store default settings in a new handle.
  14.     If the module doesn’t require any settings, this routine can just return. */
  15.     
  16.     return noErr;
  17. }